home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 27.zip / BS1 part 27 / ImageMaster_d1.adf / if-troubles < prev    next >
Text File  |  1992-08-29  |  9KB  |  177 lines

  1. ; Installer script to be run if user has troubles
  2. ;------------------------------------------------
  3.  
  4. ; This bypasses the final dir text
  5. ;---------------------------------
  6. (set @default-dest "ram:")
  7.  
  8. ; informative beginning
  9. ;----------------------
  10. (message "If the installation of Imagemaster did not seem to "
  11.          "work correctly, then you may find the solution to "
  12.          "the problem(s) you are having here. We know from "
  13.          "long experience what the typical problems are, and "
  14.          "so here we have provided solutions to the most "
  15.          "common ones.  If you are not having problems, then "
  16.          "you don't need to look at this script."
  17. )
  18.  
  19. ; Enquire of user what the problem is
  20. ;------------------------------------
  21. (set prob_type
  22.     (askchoice
  23.         (prompt "Choose from the following situations:")
  24.         (help @askchoice-help)
  25.         (choices "PI (Public Interface) Module problems"
  26.                  "Imagemaster crashes or \"locks up\""
  27.                  "Some other type of problem")
  28.         (default 2)
  29.     )
  30. )
  31.  
  32. (select prob_type
  33.     (
  34.         ; PI Module problems
  35.         (set sub_prob_type
  36.             (askchoice
  37.                 (prompt "Choose from the following situations:")
  38.                 (help @askchoice-help)
  39.                 (choices "List Requester opens, but Modules do nothing"
  40.                          "JPEG, NJPL modules crash when run, or fail"
  41.                          "Loading JPEG results in blank display"
  42.                          "Aftermarket PI Modules dissapear after install"
  43.                          "Some other type of problem")
  44.                 (default 4)
  45.             )
  46.         )
  47.         (select sub_prob_type
  48.             (
  49.                 (message "List Requester Opens, but Modules Do Nothing\n\n"
  50.                          "This is usually caused by the order in which "
  51.                          "the \"REXXMAST\" command and the \"path add sys:rexxc\" "
  52.                          "command occur in your startup-sequence. If the \"path add\" "
  53.                          "command occurs AFTER the \"REXXMAST\" command, "
  54.                          "then the ARexx host itself does not know the path "
  55.                          "to find it's own \"RX\" command, which is used by "
  56.                          "the PI modules to launch other scripts.\n\n"
  57.                          "The solution is to move the \"path add\" command "
  58.                          "to a line in the startup-sequence BEFORE the "
  59.                          "\"REXXMAST\" command, and then reboot.")
  60.             )
  61.             (
  62.                 (message "JPEG, NJPL modules crash when run, or fail\n\n"
  63.                          "This is usually caused by too small a stack "
  64.                          "for the main ARexx process. You can solve it "
  65.                          "by placing the following line on a new line BEFORE the \"REXXMAST\""
  66.                          "command in your startup-sequence:\n\n"
  67.                          "stack 10000\n\n"
  68.                          "That should solve the problem.")
  69.             )
  70.             (
  71.                 (message "Loading JPEG results in blank display\n\n"
  72.                          "This is almost always caused by not enough "
  73.                          "memory to load the image. JPEG files can \"fool\" "
  74.                          "you, because they are very small files, although "
  75.                          "they may be very large images (due to the high "
  76.                          "compression used).")
  77.             )
  78.             (
  79.                 (message "Aftermarket PI Modules dissapear after install\n\n"
  80.                          "This happens because we replace the \"list.list\" "
  81.                          "file in the CMPI: assigned location; this file "
  82.                          "contains the lines which tell the PI Module launcher "
  83.                          "how to launch these modules. However, when we do "
  84.                          "a new installation, we COPY the old list.list file "
  85.                          "to \"list.list.old\", also in your CMPI: assigned "
  86.                          "location. So, to put your aftermarket PI Modules "
  87.                          "back in place, just edit the two files and copy the "
  88.                          "lines from the old list.list file to the new. Note "
  89.                          "that the PI Modules themselves have NOT been lost, "
  90.                          "only the list.list lines that launch them.")
  91.             )
  92.             (
  93.                 (message "You'll have to call our technical support line "
  94.                          "at (406) 367-5509. You may call between 9am and "
  95.                          "5 pm, Mountain Standard Time. Note that you MUST "
  96.                          "be a REGISTERED USER to get technical support, "
  97.                          "so send that registration in IMMEDIATELY!")
  98.             )
  99.         )
  100.     )
  101.     (
  102.         ; Crashing / lockup problems
  103.         (set sub_prob_type
  104.             (askchoice
  105.                 (prompt "Choose from the following situations:")
  106.                 (help @askchoice-help)
  107.                 (choices "Imagemaster seems to crash randomly"
  108.                          "Locks up when you change screens"
  109.                          "Cannot get to the WorkBench screen"
  110.                          "Some other type of problem")
  111.                 (default 3)
  112.             )
  113.         )
  114.         (select sub_prob_type
  115.             (
  116.                 (message "Imagemaster seems to crash randomly\n\n"
  117.                          "This usually happens only under WB 1.3; "
  118.                          "The actual cause is the mixing of several "
  119.                          "Interlace and Non-Interlace displays (screens); "
  120.                          "When this happens, 1.3 crashes. This problem "
  121.                          "was fixed by Commodore in AmigaDOS 2.0; we "
  122.                          "VERY strongly suggest that you replace your "
  123.                          "1.3 DOS with the 2.0 DOS. That will permanently "
  124.                          "solve this problem. As a temporary measure, "
  125.                          "you can use NO interlace mode screens; the "
  126.                          "crashes will stop, although you will be "
  127.                          "incovenienced by the loss of resolution. Get "
  128.                          "AmigaDOS 2.0!!!")
  129.             )
  130.             (
  131.                 (message "Locks up when you change screens\n\n"
  132.                          "This usually happens only under WB 1.3; "
  133.                          "The actual cause is the mixing of several "
  134.                          "Interlace and Non-Interlace displays (screens); "
  135.                          "When this happens, 1.3 crashes. This problem "
  136.                          "was fixed by Commodore in AmigaDOS 2.0; we "
  137.                          "VERY strongly suggest that you replace your "
  138.                          "1.3 DOS with the 2.0 DOS. That will permanently "
  139.                          "solve this problem. As a temporary measure, "
  140.                          "you can use NO interlace mode screens; the "
  141.                          "crashes will stop, although you will be "
  142.                          "incovenienced by the loss of resolution. Get "
  143.                          "AmigaDOS 2.0!!!")
  144.             )
  145.             (
  146.                 (message "Cannot get to the WorkBench screen\n\n"
  147.                          "This is easily solved under WB 2.0; Simply "
  148.                          "Press the right-Amiga key and the M key "
  149.                          "together, and you'll go to the next screen. "
  150.                          "If that's not the WorkBench, press again, until "
  151.                          "You get there.\n\n"
  152.                          "If you're running WorkBench 1.3, you can use a "
  153.                          "Public Domain utility called \"NextScreen\", "
  154.                          "which does essentially the same thing; However, "
  155.                          "We STRONGLY suggest you get WB 2.0 instead. WB "
  156.                          "1.3 is obsolete.")
  157.             )
  158.             (
  159.                 (message "You'll have to call our technical support line "
  160.                          "at (406) 367-5509. You may call between 9am and "
  161.                          "5 pm, Mountain Standard Time. Note that you MUST "
  162.                          "be a REGISTERED USER to get technical support, "
  163.                          "so send that registration in IMMEDIATELY!")
  164.             )
  165.         )
  166.     )
  167.     (
  168.         (message "You'll have to call our technical support line "
  169.                  "at (406) 367-5509. You may call between 9am and "
  170.                  "5 pm, Mountain Standard Time. Note that you MUST "
  171.                  "be a REGISTERED USER to get technical support, "
  172.                  "so send that registration in IMMEDIATELY!")
  173.     )
  174. )
  175.  
  176. (exit (quiet))
  177.